/* ----------------------------------------
   BASE
---------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #333;
}

/* ----------------------------------------
   HERO
---------------------------------------- */
#hero-header {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 360px;
  overflow: hidden;
  background: linear-gradient(135deg, #50b49a 0%, #4ebb91 45%, #4f8ac4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  pointer-events: none;
}

.hero-text h1 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3.5vw, 44px);
  letter-spacing: 6px;
  text-transform: uppercase;
}

/* ----------------------------------------
   FADE-UP ANIMATION
---------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------
   BUSINESS PRESENCE SECTION
---------------------------------------- */
#location-section {
  background: #fff;
  padding: 90px 24px 100px;
}

.location-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.location-heading {
  text-align: center;
  margin-bottom: 14px;
}

.location-heading h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #222;
  letter-spacing: 1px;
}

.location-heading p {
  font-size: 15px;
  color: #888;
  margin-top: 14px;
  font-weight: 300;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ----------------------------------------
   MAP IMAGE
---------------------------------------- */
.map-container {
  margin: 52px auto 0;
  text-align: center;
}

.map-container img {
  max-width: 100%;
  width: 640px;
  height: auto;
  display: inline-block;
}

/* ----------------------------------------
   CONTACT INFO ROW
---------------------------------------- */
.contact-info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 60px;
  justify-content: center;
  text-align: center;
}

.contact-info-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.contact-info-col a {
  font-size: 14px;
  color: #4ebb91;
  text-decoration: underline;
  line-height: 1.8;
  display: block;
}

.contact-info-col a.address {
  color: #222;
  text-decoration: none;
  font-weight: 400;
}

.contact-info-col span {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  display: block;
}

/* ----------------------------------------
   RESPONSIVE
---------------------------------------- */
@media (max-width: 720px) {
  .contact-info-row {
    flex-direction: column;
    gap: 24px;
  }

  .map-container img {
    width: 100%;
  }
}